From d2a23a17dbdd336330906d393ff1bfcec72bd1a4 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 18 Jun 2008 22:21:21 +0000 Subject: [PATCH] Redirects in logs, rc, etc. should have mw-redirect applied. --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 436f006eac..ba7710eef2 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -121,7 +121,7 @@ class ChangesList { # "[[x]] moved to [[y]]" $msg = ( $rc->mAttribs['rc_type'] == RC_MOVE ) ? '1movedto2' : '1movedto2_redir'; - $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no' ), + $s .= wfMsg( $msg, $this->skin->makeKnownLinkObj( $rc->getTitle(), '', 'redirect=no', '', '', '', 'class="mw-redirect"' ), $this->skin->makeKnownLinkObj( $rc->getMovedToTitle(), '' ) ); } -- 2.20.1